home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / utility / horst_2.zip / ISDATE.DOC < prev    next >
Text File  |  1995-12-18  |  916b  |  31 lines

  1. ------------------------------------------------------------------------
  2. ISDATE    compare dates                 Ver 1.2 (c) 1994 Horst Schaeffer
  3. ------------------------------------------------------------------------
  4.  
  5. Syntax:
  6.     ISDATE date1 [not] [=|equal|before|after] date2
  7.  
  8. date: format according to COUNTRY (!) but any delimiters
  9.   or: date of file (filespec)
  10.   or: TODAY
  11.  
  12. returns errorlevel:
  13.         0:  TRUE
  14.         1:  FALSE
  15.       255:  file not found or syntax error (with message to STDOUT)
  16.  
  17. Examples:
  18.     ISDATE TODAY 1-1-2000                       (default: equal)
  19.     ISDATE file.ext NOT BEFORE 11-11-93
  20.     ISDATE file.ext AFTER A:\file.ext
  21.     ISDATE \temp\file.ext BEFORE TODAY
  22.  
  23. Notes:
  24.     time is not checked
  25.     files must exist, else: error
  26.     words not case sensitive, year with 2 or 4 digits
  27.     specified dates must be valid for correct result
  28.  
  29.  
  30. = 17 FEB 1995
  31.